home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / proftpd_debian.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  73 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7.  
  8. if(description)
  9. {
  10.  script_id(11450);
  11.  script_version ("$Revision: 1.1 $");
  12.  
  13.  script_cve_id("CVE-2001-0456");
  14.  
  15.  name["english"] = "Debian proftpd 1.2.0 runs as root";
  16.  
  17.  script_name(english:name["english"]);
  18.              
  19.  desc["english"] = "
  20. The following problems have been reported for the version of proftpd in 
  21. Debian 2.2 (potato):
  22.  
  23.    1. There is a configuration error in the postinst script, when the user 
  24.       enters 'yes', when asked if anonymous access should be enabled. 
  25.       The postinst script wrongly leaves the 'run as uid/gid root' 
  26.       configuration option in /etc/proftpd.conf, and adds a 
  27.       'run as uid/gid nobody' option that has no effect.
  28.       
  29.    2. There is a bug that comes up when /var is a symlink, and 
  30.        proftpd is restarted. When stopping proftpd, the /var 
  31.        symlink is removed; when it's started again a file named 
  32.        /var is created. 
  33.        
  34.        
  35. See also : http://www.debian.org/security/2001/dsa-032
  36. Solution : Upgrade your proftpd server to proftpd-1.2.0pre10-2.0potato1
  37. Risk factor : Medium";
  38.                  
  39.                      
  40.  script_description(english:desc["english"]);
  41.                     
  42.  
  43.  script_summary(english:"Checks if the version of the remote proftpd",
  44.                 francais:"DΘtermine la version du proftpd distant");
  45.  script_category(ACT_GATHER_INFO);
  46.  script_family(english:"FTP", francais:"FTP");
  47.  
  48.  
  49.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  50.                   francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  51.                   
  52.  script_dependencie("find_service.nes", "ftp_anonymous.nasl");
  53.  script_require_ports("Services/ftp", 21);
  54.  exit(0);
  55. }
  56.  
  57. #
  58. # The script code starts here : 
  59. #
  60.  
  61.  
  62.  
  63. include("ftp_func.inc");
  64.  
  65. port = get_kb_item("Services/ftp");
  66. if(!port)port = 21;
  67.  
  68. banner = get_ftp_banner(port:port);
  69.  
  70. if(egrep(pattern:"^220 ProFTPD 1\.(0\.*|2\.0pre([0-9][^0-9]|10)).*debian.*", string:banner, icase:TRUE))security_warning(port);
  71.  
  72.